PATHMac OS 8 and 9 Developer Documentation > Interapplication Communication > AppleScript for Scripters >

AppleScript Language Guide

   

String Constants

AppleScript defines the single-character string constants return , space , and tab to represent, respectively, a return character, a space character, and a tab character. You can use them with the concatenation operator (&) to add them to a string, or you can use them in comparison operations.

set addressString to return & "66601 Colton Blvd." & return ¬
    & "Oakland, CA 94611" & return
--result: two-line address, starting on a new line

These string constants are also listed in Table A-3.


© 1999 Apple Computer, Inc. – (Last Updated 21 May 99)